home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000131_news@columbia.edu _Fri Aug 2 10:46:47 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id KAA14222 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 2 Aug 1996 10:46:47 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id KAA05586 for kermit.misc@watsun; Fri, 2 Aug 1996 10:46:46 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: script command line question
  8. Date: 2 Aug 1996 14:46:27 GMT
  9. Organization: Columbia University
  10. Lines: 13
  11. Message-ID: <4tt4c3$elv@apakabar.cc.columbia.edu>
  12. References: <DvH2tz.6w3@boss.cs.ohiou.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <DvH2tz.6w3@boss.cs.ohiou.edu>,
  16. Richard Allen Coss <rc109092@oak.cats.ohiou.edu> wrote:
  17. : I'm executing a C-kermit script via the -C command line option
  18. : however the command I wish to execute with in my script contain commas.
  19. : kermit interprets this as a separation between commands.  I've tried
  20. : using ~, and \, but to no avail.  I haven't seen any documentation on
  21. : how to remedy my problem.  Does anyone know I how to solve this one?
  22. Usually it can be solved by using braces for grouping, as in:
  23.  
  24.   kermit -C "echo { one, two, three }, exit"
  25.  
  26. - Frank